* {
    box-sizing: border-box; /* Include padding and border in element's total width */
    
  }
body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /* Set a gradient background color */
    background: linear-gradient(to bottom, #ffffff, #E7E7E9);
    /* Optional: set a fallback solid color in case the gradient is not supported */
    background-color: #DFDFDF;
}
body, html {
    overflow-x: hidden;
}



.csr-content{
    padding:20px;
}












/*All Section Title Styling */
.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 10px;
}

/* Horizontal line under the Title */
.section-hr {
    width: 60px;
    height: 4px;
    background-color: #212529;
    border: none;
    margin: 0 auto;
  
    margin-bottom: 30px;
}

.headline-underline{
    width: 60px;
    height: 4px;
    background-color: #eb5204;
}









/* Navbar Styles */
.navbar {
  background: linear-gradient(to right, #789891, #195972); /* Gradient from #789891 to #195972 */
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  flex-wrap: nowrap;
  z-index: 1000;
}
.logo img {
  height: 70px; /* Adjust based on your logo size */
  width: auto; /* Maintain aspect ratio */
  margin-left: 29px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 17px; /* Slightly larger for better readability */
  font-weight: bolder; /* Medium-bold for a refined look */
  transition: all 0.3s ease-in-out;
  border-radius: 5px; /* Smooth rounded edges */
  position: relative;
}

/* Elegant hover effect */
.nav-links a:hover {
  color: #000000; /* Elegant gold accent */
  background: rgba(255, 255, 255, 0.1); /* Subtle transparent highlight */
}

/* Underline effect on hover */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #FFD700; /* Gold underline effect */
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}


/* Dropdown */
/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  color: black;
  list-style: none;
  top: 100%;
  left: 0;
  min-width: 250px;
  max-width: 300px;
  max-height: 600px; /* Limits dropdown height */
  overflow-y: auto; /* Enables scrolling */
  padding: 5px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 1000;
}

/* Dropdown Items */
.dropdown-menu li {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Remove bottom border for last item */
.dropdown-menu li:last-child {
  border-bottom: none;
}

/* Dropdown Links */
.dropdown-menu a {
  color: black;
  font-size: 14px;
  display: block;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.dropdown-menu a:hover {
  background: #789891;
  color: white;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}



/* Mobile Toggle Button */
.menu-toggle {
  font-size: 24px;
  cursor: pointer;
  display: none; /* Hidden by default */
  color: black; /* Change to black for better visibility on white */
}

/* Mobile Sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%; /* Position it off-screen to the left */
  width: 100%; /* Full screen width */
  height: 100%;
  background: white; /* White background */
  color: black; /* Black text */
  transition: 0.3s;
  padding-top: 50px;
  z-index: 1001;
  overflow-y: auto; /* Vertical scrolling */
}

/* Adjusting the position of the menu items */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  padding: 15px;
  text-align: left;
  position: relative;
}

.mobile-menu ul li a {
  color: black; /* Black text */
  text-decoration: none;
  font-size: 18px;
  font-weight: bolder;
  display: block;
  transition: background 0.3s ease;
}

.mobile-menu ul li a:hover {
  background: #f0f0f0; /* Light gray hover background */
}

/* Styling for the submenu items */
.submenu {
  position: relative;
}

.submenu > a {
  cursor: pointer;
}

.submenu-items {
  display: none;
  padding-left: 20px; /* Add space on the left side for bullet points */
  list-style: inside; /* Bullet points for the submenus */
  margin-top: 10px;
  max-height: 300px; /* Max height for submenu */
  overflow-y: auto; /* Vertical scrolling */
}

.submenu-items li {
  padding: 5px 10px;
  border-bottom: 1px solid #ddd; /* Light gray separator */
}

.submenu-items li:last-child {
  border-bottom: none;
}

.submenu-items li a {
  font-size: 16px;
  color: black; /* Black text */
  display: block;
  padding: 8px;
}

.submenu-items li a:hover {
  background: #f0f0f0; /* Light gray hover background */
}

.submenu.open .submenu-items {
  display: block;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px; /* Position close button to the right */
  font-size: 30px;
  cursor: pointer;
  color: black; /* Black text */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
      display: none; /* Hide desktop nav links on mobile */
  }
  .menu-toggle {
      display: block; /* Show mobile toggle button */
  }
}

/* MENU text */
.menu-text {
  font-size: 24px;
  font-weight: bold;
  color: #333; /* Dark gray */
  padding: 20px 20px 10px 20px;
}

/* Logo */
.logo-container {
  padding: 10px 20px;
  text-align: left;
}

.logo {
  max-width: 100px; /* Adjust as needed */
  height: auto;
}

/* Horizontal line */
.menu-divider {
  border: 0;
  height: 1px;
  background: #ddd; /* Light gray */
  margin: 10px 20px;
}

/* Buttons */
.button-container {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 10px; /* Space between buttons */
}

.menu-button {
  flex: 1;
  padding: 10px;
  text-align: center;
  color: white;
  background-color: #518CB8; /* Blue */
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.menu-button:hover {
  background-color: #3a6a8a; /* Darker blue on hover */
}

.menu-button i {
  margin-right: 5px; /* Space between icon and text */
}

/* Social Media Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px; /* Space between icons */
  padding: 20px;
}

.social-icon {
  color: #518CB8; /* Blue */
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #3a6a8a; /* Darker blue on hover */
}



















section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  
}

h2, h3,h1,h4 {
    text-align: center;
    color: #e63838;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
/* Media query for mobile devices */
@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem; /* Adjust this size as needed for mobile */
        font-weight: bold;
    }

}

/* Desktop-specific styles }
@media (min-width: 768px) {
   h3 {

    text-align: left!important;
    
}}*/


h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #555;
    text-align: center;
    
}
h4 {
    font-size: 0.8rem;
    margin-bottom: 15px;
    color: #555;
    margin-left: 35px;
}
p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
    padding-left: 20px;
    padding-right: 20px;
}




/* Gallery Styles */
.gallery-container {
    margin-top: 10px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Default to desktop layout */
    gap: 15px;
    margin-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Modal for zoomable images */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 90px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Modal Image Content */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%; /* Reduced to make it fit better on desktop */
    max-height: 80vh; /* Ensure image fits within viewport height */
    width: auto;
    height: auto;
    border-radius: 8px;
}

.modal-content:hover {
    transform: scale(1.02);
}

/* Close button */
.close {
    position: absolute;
    top: 60px;    /* Reduced distance from the top */
    right: 40px;  /* Reduced distance from the right */
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;  /* Ensure it stays above the image */
}

/* For medium desktops (992px to 1199px) */
@media (min-width: 772px) {
    /* Styles specific to medium desktops */
    .close {
        right: 550px;  /* Reduced distance from the right */
    }
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row on mobile */
    }
}



















/* Footer Styles */
.footer {
  background-color: #121921;
  color: #E0E6E8;
  padding: 40px 20px;
}

/* About Section */
.footer-about {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Social Icons */
.social-icons a {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #E0E6E8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

/* Explore More */
.explore-more ul {
  list-style: none;
  padding: 0;
}

.explore-more ul li {
  margin-bottom: 10px;
}

.explore-more ul li a {
  color: #E0E6E8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.explore-more ul li a:hover {
  color: #ffffff;
}

/* Connect With Us */
.connect-with-us h4 {
  font-size: 1.2rem;
  font-weight: bold;
}

.connect-with-us p {
  font-size: 1rem;
  margin-bottom: 5px;
}

.connect-with-us i {
  margin-right: 10px;
}

/* Payment Icons */
.payment-icons i {
  font-size: 1.8rem;
  margin-right: 15px;
}

/* GDPR Links */
.gdpr-links a {
  color: #E0E6E8;
  text-decoration: none;
  font-size: 0.9rem;
}

.gdpr-links a:hover {
  color: #ffffff;
}

/* Horizontal Line */
.footer-line {
  border-color: #2c3e50;
  margin: 30px 0;
}

/* Footer Bottom */
.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-section {
      text-align: left;
  }

  .social-icons, .explore-more, .payment-icons, .gdpr-links, .connect-with-us {
      text-align: left!important;
  }

  .social-icons a {
      display: inline-block;
      margin-bottom: 10px;
  }

  .payment-icons {
      margin-bottom: 20px;
  }

  .gdpr-links {
      text-align: left;
      margin-top: 20px;
  }


}
@media (min-width: 1024px) {
  .social-icons {
    flex: 0 0 42%; /* Increase width slightly */
    max-width: 42%;
    margin-left: 21%!important; /* Moves it slightly to the right */
  }
}



@media (min-width: 768px) {
  .footer-section {
      display: flex;
      align-items: start;
      justify-content: space-between;
  }

  .social-icons,
  .explore-more,
  .payment-icons,
  .gdpr-links {
      flex: 0 0 38%; /* Forces both to be almost equal width */
      max-width: 48%;
  }

  .explore-more ul {
      padding-left: 0;
  }

  .gdpr-links {
      text-align: right;
  }
}
